home *** CD-ROM | disk | FTP | other *** search
/ HyperLib 1997 Winter - Disc 1 / HYPERLIB-1997-Winter-CD1.ISO.7z / HYPERLIB-1997-Winter-CD1.ISO / オンラインウェア / GAME / Xconq 7.0.1.sit / Xconq 7.0.1 / lib / ng-american.g < prev    next >
Text File  |  1995-08-22  |  449b  |  15 lines

  1. ;;; American names tend to be a hodgepodge of Indian, Spanish, English, etc,
  2. ;;; sometimes even mixed together, and usually distorted to boot.
  3.  
  4. (namer american-place-names (grammar root 9
  5.   (root (or amerindian-name
  6.         english-name
  7.         spanish-name
  8.     ))
  9.   (amerindian-name ("?"))
  10.   (english-name ("?"))
  11.   (spanish-name (or saint-name spanish-word ("los " spanish-word)))
  12.   (saint-name ("San " (or jose francisco lucas joao juan luis miguel)))
  13. ))
  14.  
  15.